[Wordpress] How do I return values from custom created meta box?

Posted by Steven on Stack Overflow See other posts from Stack Overflow or by Steven
Published on 2010-04-28T07:04:51Z Indexed on 2010/04/29 7:47 UTC
Read the original article Hit count: 280

Filed under:
|

I've just followed this example from Wordpress and I have successfully added an extra Meta Box in Post interface, and the value is stored in DB.

Now my question is, how can I retrieve and display the content of this meta box?

I'm trying the following code:

  $intro = get_post_meta($post->ID, 'post_intro', true);
  echo $intro;

But I get nada. What am I doing wrong?

And while I'm here, does anybody know if I can place this extra meta box above the default text box in Wordpress post page?

© Stack Overflow or respective owner

Related posts about Wordpress

Related posts about php